(struct composition): Change types of members; glyph_len to unsigned,
authorKenichi Handa <handa@m17n.org>
Fri, 9 Mar 2001 12:08:15 +0000 (12:08 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 9 Mar 2001 12:08:15 +0000 (12:08 +0000)
width to unsigned short.

src/composite.h

index 7c7236e439a77c5803dab70f746c6fdb276057e5..75a336d6643ee87dac96a75b1edda8f0bf32169a 100644 (file)
@@ -149,17 +149,17 @@ extern Lisp_Object composition_temp;
    ID, and thus share the same instance of this structure.  */
 
 struct composition {
-  /* How many columns the overall glyphs occupy on the screen.  This
-     gives an approximate value for column calculation in
-     Fcurrent_column, and etc.  */
-  unsigned char width;
-
   /* Number of glyphs of the composition components.  */
-  unsigned char glyph_len;
+  unsigned glyph_len;
 
   /* Width, ascent, and descent pixels of the composition.  */
   short pixel_width, ascent, descent;
 
+  /* How many columns the overall glyphs occupy on the screen.  This
+     gives an approximate value for column calculation in
+     Fcurrent_column, and etc.  */
+  unsigned short width;
+
   /* Method of the composition.  */
   enum composition_method method;